    /* box2 */
    .section2 {
        margin-top: 80px;
        padding: 60px 0;
        width: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .Box2 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 10px;
    }

    .item2 {
        width: 100%;
        height: 275px;
        display: flex;
        flex-wrap: wrap;
        background: #EEE;
    }

    .img2 {
        width: 50%;
        height: 100%;
        background: #000;
    }

    .img2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .item2:hover .img2 img {
        opacity: 0.5;
    }

    .text2 {
        border-left: 5px solid #fff;
        width: 50%;
        padding: 10px;
        grid-gap: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .text2 h1 {
        font-size: 24px;
        color: #393B48;
    }

    .text2 h2 {
        line-height: 2;
        font-size: 16px;
        color: var(--color);
    }

    .text2 p {
        line-height: 2;
        font-size: 14px;
        text-indent: 28px;
        color: var(--color);
    }

    @media (max-width: 1200px) {
        .section2 {
            margin: 0;
        }

        .Box2 {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 20px;
        }

        .item2 {
            height: auto;
        }

        .img2 {
            width: 40%;
        }

        .text2 {
            padding: 20px 15px;
            width: 60%;
            grid-gap: 10px;
        }
    }

    @media (max-width: 720px) {}

    @media (max-width: 460px) {
        .img2 {
            width: 100%;
            height: auto;
        }

        .text2 {
            width: 100%;
        }
    }

    @media (max-width: 380px) {}